home *** CD-ROM | disk | FTP | other *** search
/ ASME's Mechanical Engine…ing Toolkit 1997 December / ASME's Mechanical Engineering Toolkit 1997 December.iso / c_lang / pccstdio.lzh / SRC.LZH / PUTW.C < prev    next >
Encoding:
C/C++ Source or Header  |  1984-07-23  |  330 b   |  22 lines

  1. /*    putw.c - put word to stream.
  2.     (C) Copyright 1984 Gregory R. Mansfield - All Rights Reserved.
  3.     G. R. Mansfield.  84/06/13.
  4.     Ver 1.0-4723.
  5. */
  6.  
  7. #include "defstd.h"
  8. #include "stdio.h"
  9.  
  10. unsigned putw(w, fp)
  11. unsigned w;
  12. FILE *fp;
  13. {
  14.     BYTE c;
  15.  
  16.     c = w >> 8;
  17.     putc(c, fp);
  18.     c = w & 0xFF;
  19.     putc(c, fp);
  20.     return(w);
  21. }
  22.